fork(2) download
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6.  
  7. {
  8. int a,b,c;
  9. cin >> a;
  10. cin >> b;
  11. b=b-a;
  12.  
  13. srand( time( NULL ) );
  14. std::cout << "Wylosowanie pierwsze: " <<(( rand() % (b) ) + a ) << std::endl;
  15. int liczba =( rand() % b ) + a;
  16. std::cout << "Wylosowanie drugie: " << liczba << std::endl;
  17. liczba =( rand() % b ) + a;
  18. std::cout << "Wylosowanie trzecie: " << liczba << std::endl;
  19. return 0;
  20. }
  21.  
  22.  
Success #stdin #stdout 0.02s 2684KB
stdin
5
25
stdout
Wylosowanie pierwsze: 15
Wylosowanie drugie: 13
Wylosowanie trzecie: 8